func runtime.addb

25 uses

	runtime (current package)
		arena.go#L563: 		gcProgBits = runGCProg(addb(p, 4), (*byte)(ptr))
		arena.go#L573: 		h = h.write(readUintptr(addb(p, i/8)), k)
		arena.go#L603: 				want = *addb(typ.GCData, j/8)>>(j%8)&1 != 0
		cgocheck.go#L202: 	ptrmask := addb(gcbits, skipMask)
		cgocheck.go#L210: 			ptrmask = addb(ptrmask, 1)
		mbitmap.go#L53: func addb(p *byte, n uintptr) *byte {
		mbitmap.go#L641: 	bits = addb(bits, word/8)
		mbitmap.go#L647: 			bits = addb(bits, 1)
		mbitmap.go#L709: 			ptrmask = addb(ptrmask, 1)
		mbitmap.go#L978: 		n := runGCProg(addb(typ.GCData, 4), obj)
		mbitmap.go#L1035: 				p = addb(p, ptrBits/8)
		mbitmap.go#L1073: 					p = addb(p, ptrBits/8)
		mbitmap.go#L1097: 					want = *addb(typ.GCData, j/8)>>(j%8)&1 != 0
		mbitmap.go#L1353: 	runGCProg(addb(prog, 4), (*byte)(unsafe.Pointer(s.startAddr)))
		mbitmap.go#L1431: 				mask[i/goarch.PtrSize] = (*addb(bitmap, off/8) >> (off % 8)) & 1
		mbitmap.go#L1443: 				mask[i/goarch.PtrSize] = (*addb(bitmap, off/8) >> (off % 8)) & 1
		mgcmark.go#L1227: 		bits := uint32(*addb(ptrmask, i/(goarch.PtrSize*8)))
		mgcmark.go#L1359: 				bits := *addb(ptrmask, word/8)
		mgcmark.go#L1386: 			bits := *addb(ptrmask, word/8)
		mheap.go#L2090: 	return addb(&b.x, n)
		stack.go#L592: 	b := *(addb(bv.bytedata, i/8))
		stack.go#L612: 				print("        ", add(scanp, (i+j)*goarch.PtrSize), ":", ptrnames[bv.ptrbit(i+j)], ":", hex(*(*uintptr)(add(scanp, (i+j)*goarch.PtrSize))), " # ", i, " ", *addb(bv.bytedata, i/8), "\n")
		stack.go#L615: 		b := *(addb(bv.bytedata, i/8))
		stack.go#L721: 				if *addb(gcdata, i/(8*goarch.PtrSize))>>(i/goarch.PtrSize&7)&1 != 0 {
		symtab.go#L1124: 	return bitvector{stkmap.nbit, addb(&stkmap.bytedata[0], uintptr(n*((stkmap.nbit+7)>>3)))}